home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 002 / pco108.arc / README.1 < prev    next >
Text File  |  1986-05-10  |  13KB  |  259 lines

  1.  
  2.  
  3. May 10, 1986
  4. PC-OUTLINE Version 1.08
  5.  
  6. These are some of the files on this disk:
  7.  
  8. PCO.EXE      - executable file for running PC-OUTLINE
  9. README.1     - the latest notes about PC-OUTLINE not included in the manual
  10. README.2     - descriptions of the utility programs included on the disk
  11. GLOBAL.COM   - utility program #1 (see README.2)
  12. CPY.COM      - utility program #2 (see README.2)
  13. DIRS.COM     - utility program #3 (see README.2)
  14. MOVE.COM     - utility program #4 (see README.2)
  15. MEM.COM      - utility program #5 (see README.2)
  16. BEEP.COM     - utility program #6 (see README.2)
  17. PUSHDIR.COM  - utility program #7 (see README.2)
  18. POPDIR.COM   - utility program #8 (see README.2)
  19. DOC.PRN      - brief documentation in printable form
  20. DOC.PCO      - brief documentation in a PC-OUTLINE file
  21. EPSON.CFG    - the epson printer driver
  22. IBM.CFG      - the ibm printer driver
  23. BLANK.CFG    - a dummy printer driver that will ignore all print codes
  24. PRINTDOC.BAT - a batch file that will print DOC.PRN to LPT1
  25. PCPRINT.COM  - a program for changing printer drivers
  26. KEYSET.COM   - a program for customizing the PC-OUTLINE invoke key
  27. PCOPRN$.CFG  - a printer substitution file for correctly printing graphics
  28.                characters on non-IBM printers.
  29. CREATE.PCO   - an outline describing how to create new outline elements.
  30. MENUS.PCO    - an outline describing how to use the menus.
  31. HIDING.PCO   - an outline describing how to hide and unhide outline
  32.                elements.
  33. MOVE.PCO     - an outline describing how to rearrange outline elements.
  34. GOODCLK.COM  - a program to make the time display in PC-OUTLINE work
  35.                correctly on some compatibles (AT&T, EPSON, and others).
  36.                To use it, just run it in your autoexec.bat file (or any
  37.                time before loading PC-OUTLINE).
  38.  
  39. Last minute notes about PC-OUTLINE:
  40.  
  41. A couple new features have been implemented which are not included in
  42. the manual.
  43.  
  44. 1)   NEW WAY OF SPECIFYING WHERE THE CONFIGURATION FILE IS FOR USE ON
  45.      A HARD DISK:  Instead of using the /l=<configuration file/path
  46.      name> as a command parameter option, you may put the command
  47.      SET PCO=<configuration file/path name> in your autoexec.bat
  48.      file.  PC-OUTLINE will first look in the current directory for
  49.      the configuration file PCO.CFG.  If it is not found there and
  50.      there was no /l=.....  command parameter, then PC-OUTLINE will
  51.      try the file/path set in the environment with the dos SET
  52.      command.  By using this feature, you can start PC-OUTLINE from
  53.      anywhere on your hard disk simply by pathing to the directory
  54.      that contains PCO.EXE.  PC-OUTLINE will do the rest of the work,
  55.      automatically finding its configuration files.
  56.  
  57. 2)   NEW /d COMMAND PARAMETER FOR CONTROLLING THE STARTING CURRENT
  58.      DIRECTORY IN PC-OUTLINE:  The configuration file PCO.CFG
  59.      (created from the ADVANCED CONFIGURATION menu) can contain a
  60.      starting directory.  If it does, then each time PC-OUTLINE
  61.      starts it will automatically start with that directory as the
  62.      current directory for outline files.  If it does not contain a
  63.      starting directory, (the entry in the ADVANCED CONFIGURATION
  64.      menu for starting directory is blank), then PC-OUTLINE will use
  65.      the current DOS directory as its starting directory.  If you set
  66.      a current directory in the above menu because you keep most of
  67.      your outline files in one particular location, but sometimes you
  68.      want to start up PC-OUTLINE with a different directory, then you
  69.      can log to the directory you want and type PCO.EXE /d.  The /d
  70.      will tell PC-OUTLINE to ignore the starting directory set in the
  71.      configuration file and use the DOS current directory.
  72.  
  73. 3)   Although it is not mentioned in the documentation anywhere,
  74.      PC-OUTLINE supports the creation of a printer substitution table
  75.      allowing you to print graphics characters on some printers.  Note:
  76.      Graphics characters will print exactly as seen on the screen on an
  77.      IBM printer.  On epson printers and most other printers, however, you
  78.      must do a little extra work to get some graphics characters to print
  79.      correctly.
  80.  
  81.      For example, if you choose bullet numbering for your outlines, an
  82.      epson printer will not correctly print the bullet.  To fix this,
  83.      create an ascii file named PCOPRN$.CFG and place the following line
  84.      in it (this file exists on the PC-OUTLINE system disk):
  85.  
  86.      char(254)=143
  87.  
  88.      The bullet character on screen is 254 and the epson printer character
  89.      for a bullet is 143.  This command tells PC-OUTLINE that whenever it
  90.      is about to print a character 254, print a 143 instead.  You can
  91.      place as many printer substitutions as you like.  The string to
  92.      substitute can be more than one character if desired.  For example
  93.      you could redefine the tilde character (~) to turn boldface on (for
  94.      an epson printer) by inserting the following line.
  95.  
  96.      char('~')=27,'E'
  97.  
  98.      This would substitute ESC G for every occurence of a tilde character.
  99.  
  100.      Note that there are two ways to insert a value, by placing a
  101.      character in single quotes ('D') or by entering the decimal
  102.      representation for the ascii value of the character (123).  Each
  103.      entry must be separated by a comma.  Following are some valid
  104.      entries:
  105.  
  106.      char(132)='a'
  107.      char('f')='ABC',32
  108.      char(34)=255,'abc',27,'G'
  109.  
  110.      Any line in the file that begins with a semicolon will be ignored
  111.      (useful for inserting comments).  Lines in the substitution file may
  112.      be no longer than 80 characters.  To continue a line on the next
  113.      line, end the line with a plus sign.  For example:
  114.  
  115.      char('~')='ABCEFGHIJKLMNOP',+
  116.      'QRSTUVWXYZ'
  117.  
  118.      This command would print the entire alphabet everytime the tilde
  119.      ('~') was encountered in a file.
  120.  
  121.      PC-OUTLINE will look for the file PCOPRN$.CFG in the same directory
  122.      as the configuration file.  If you have not used either the
  123.      l=<filename> command parameter or the SET PCO=<filename> command to
  124.      specify where the configuration file is located, then PC-OUTLINE will
  125.      just look for PCOPRN$.CFG in the current directory.
  126.  
  127.  
  128. ITEMS ADDED TO PC-OUTLINE SINCE THE DOCUMENTATION RELEASE.
  129. ----------------------------------------------------------
  130.  
  131. ADDED IN VERSION 1.02:
  132.  
  133. 1)   DE-INSTALL - While using PC-OUTLINE in memory resident mode, you may
  134.      deinstall it from memory by pressing Control-Backspace three times in
  135.      a row from the main editing mode.  If there were no memory resident
  136.      programs loaded after PC-OUTLINE, you will recover all the memory
  137.      that PC-OUTLINE was allocated.  If you load any memory resident
  138.      programs after PC-OUTLINE, the memory PC-OUTLINE occupied will be
  139.      freed, but it will not be available for dos to use to run other
  140.      programs in.
  141.  
  142.      Note:     ONLY USE THE DEINSTALL COMMAND AFTER INVOKING PC-OUTLINE
  143.                FROM THE DOS PROMPT AND ONLY AFTER YOU HAVE SAVED ALL OF
  144.                YOUR OUTLINES.  YOU MUST BE IN THE MAIN EDITING MODE OF
  145.                PC-OUTLINE FOR THE DEINSTALL TO WORK (not the opening
  146.                menu).
  147.  
  148. ADDED IN VERSION 1.03:
  149.  
  150. 1)   The "Lose Changes" prompt now looks at all open windows.  It used to
  151.      only look at changes in the current window.
  152.  
  153. 2)   With the /K command parameter option you can force PC-OUTLINE to take
  154.      its keys directly from the keyboard buffer without going through
  155.      BIOS.  This allows you to bypass keyboard enhancers.
  156.  
  157.      MAIN USE:  If you have a whole bunch of keys redefined for your word
  158.      processor and you don't want those key definitions for PC-OUTLINE,
  159.      you can use the /K option and the keyboard enhancer will be active in
  160.      your main program, but not when you invoke PC-OUTLINE.  When you
  161.      return back to your word processor, the keyboard enhancer will
  162.      automatically be active again.  It is likely you will only find use
  163.      for this option when using PC-OUTLINE in its memory resident mode.
  164.  
  165.      For those of you following the progression of versions, all
  166.      non-memory resident versions get their keys through BIOS.  For the
  167.      memory resident version, 1.00 and 1.01 got keys directly from
  168.      keyboard buffer, 1.02 got keys through BIOS and 1.03 gives you the
  169.      choice with /K (default through BIOS).
  170.  
  171. ADDED IN VERSION 1.04:
  172.  
  173. 1)   A few small changes to make 1.03 work how it was supposed to.
  174.  
  175. ADDED IN VERSION 1.05:
  176.  
  177. 1)   DELETE OUTLINE ENTRY PROMPT:  The delete outline entry command now
  178.      contains a prompt that asks you to confirm whether you really want to
  179.      delete the entire outline family.  This was added in response to
  180.      complaints that the ^D command was too dangerous.  You could delete
  181.      your whole outline with a single keystroke.  If you do not want this
  182.      prompt, then you can use the command parameter /P when first loading
  183.      PC-OUTLINE and the prompt will be skipped.  Note you could also
  184.      define a macro for ^D to be ^DY (^D and then a Y to answer yes to the
  185.      delete prompt).
  186.  
  187. 2)   SNOW ON MONITORS:  The /T command parameter will fix a problem with
  188.      snow on the screen that some monitors may have.  On some IBM color
  189.      graphics adapters, you may see a small amount of snow on the left
  190.      edge of the screen.  Using the /T command parameter should eliminate
  191.      that.  The problem also occurs on some Hercules clone video cards.
  192.      If you have the IBM monochrome adapter, an EGA card, or a COMPAQ
  193.      card, you should not need this option.  Using the /T parameter has a
  194.      slight disadvantage (so you should not use it unless you need it).
  195.      With /T enabled, the on screen time and the CAPS and NUM indicators
  196.      will only be updated whenever you press a key.  Consequently, the
  197.      time and the shift status may not be correct if you have not pressed
  198.      a  key for a while.  Note:  this option is not the same as video
  199.      retrace in the ADVANCED CONFIGURATION menu.  If you see snow on the
  200.      screen, you should first make sure that this option is set to YES.
  201.      Only if that does not fix the problem should you use /T.  You may
  202.      also want to use this option if you have a Hercules clone and you see
  203.      unwanted background snow all the time.
  204.  
  205. 3)   LOW INTENSITY VIDEO:  The /I command parameter will force PC-OUTLINE
  206.      to use low intensity video instead of high intensity video (in
  207.      response to users with a monochrome display).
  208.  
  209. 4)   SAME KEY INVOKE/DE-INVOKE:  When using PC-OUTLINE in memory resident
  210.      mode, the same key that you use to invoke PC-OUTLINE (the default is
  211.      Control-Backslash, but you can change it using KEYSET.COM) will also
  212.      exit PC-OUTLINE and return you back to your other application.
  213.  
  214. 5)   CORRECT TIME ON COMPATIBLES:  A utility program called GOODCLK.COM is
  215.      now included on the disk that will allow PC-OUTLINE to correctly
  216.      display the time on some compatibles.  To use it, just run it any
  217.      time before loading PC-OUTLINE (preferably in your autoexec.bat
  218.      file).  It does not remain memory resident so you lose no memory by
  219.      running it.  All it does is set the BIOS time to be the same as the
  220.      DOS time.  PC-OUTLINE gets its time from BIOS (because it is so much
  221.      quicker), but some compatibles with clock cards (AT&T, EPSON, ...)
  222.      set the DOS time correctly on boot up, but not the BIOS time.  You
  223.      should not need this if you have an IBM or a COMPAQ.
  224.  
  225. 6)   Pressing the ESC key after hitting the menu key ("/") will now just
  226.      cancel the menu key instead of asking you if you want to quit
  227.      PC-OUTLINE.
  228.  
  229. ADDED IN VERSION 1.06:
  230.  
  231. 1)   A few small changes to make the memory resident version work with
  232.      more programs.
  233.  
  234. 2)   Bug fixes in the key re-definition part of the program.
  235.  
  236. ADDED IN VERSION 1.07:
  237.  
  238. 1)   Small bug fixes relating to hiding and unhiding text.
  239.  
  240. 2)   New shareware policy (on the opening shareware screen).
  241.  
  242. ADDED IN VERSION 1.08:
  243.  
  244. 1)   You can now set all 8 levels of numbering in the Global Outline Style
  245.      menu.  Also fixed some problems with getting the numbering saved
  246.      correctly to the PCO.CFG file.
  247.  
  248. 2)   Fixed bug that occurs only when copying move than 255 outline
  249.      elements from one window to another.
  250.  
  251. 3)   Fixed bug that can occur only on an 80286 machine (we discovered one
  252.      of the incompatibilities between the 8088 and 80286) in the following
  253.      situations:
  254.      
  255.      a)   Adding text to a lower window number outline with more than 64k
  256.           of outlines above it in higher window numbers.
  257.      b)   Copying text or outline elements from a higher window # down to
  258.           a lower window # with more than 64k of outlines in between.
  259.